home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_c / bc4lib.zip / MOUSE.H < prev    next >
C/C++ Source or Header  |  1994-03-08  |  302b  |  27 lines

  1.  
  2.  
  3.  
  4.  
  5. extern int hasmouse;
  6.  
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12.  
  13. void resetmouse(void);
  14. int mousebutton(void);
  15. void nobutton(void);
  16. void showmouse(void);
  17. void hidemouse(void);
  18. void getmouse(int *x,int *y,int *b);
  19. void putmouse(int x,int y);
  20.  
  21.  
  22.  
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26.  
  27.